4ef48b93801110085ca9a95b715a32618f477f4b,core/src/main/java/org/apache/cxf/staxutils/validation/WoodstoxValidationImpl.java,WoodstoxValidationImpl,setupValidation,#XMLStreamReader#ServiceInfo#,57

Before Change


    public void setupValidation(XMLStreamReader reader, 
                                ServiceInfo serviceInfo) throws XMLStreamException {
        if (utils != null && reader != null) {
            utils.setupValidation(reader, serviceInfo);
        }
    }

After Change


    public void setupValidation(XMLStreamReader reader, 
                                Endpoint endpoint,
                                ServiceInfo serviceInfo) throws XMLStreamException {
        if (utils != null && reader != null && !utils.setupValidation(reader, endpoint, serviceInfo)) {
            utils = null;
        }
    }